From: kfraser@localhost.localdomain Date: Wed, 14 Feb 2007 12:14:49 +0000 (+0000) Subject: Fix DEC instruction decode. Turn into SUB, not OR. :-) X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15327^2^2~6 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=ed160caea01684db9b49b3aff8cdd336be15ca1a;p=xen.git Fix DEC instruction decode. Turn into SUB, not OR. :-) Signed-off-by: Keir Fraser --- diff --git a/xen/arch/x86/hvm/platform.c b/xen/arch/x86/hvm/platform.c index 76202a36c0..32246da991 100644 --- a/xen/arch/x86/hvm/platform.c +++ b/xen/arch/x86/hvm/platform.c @@ -713,7 +713,7 @@ static int mmio_decode(int address_bytes, unsigned char *opcode, return DECODE_success; case 1: /* dec */ - mmio_op->instr = INSTR_OR; + mmio_op->instr = INSTR_SUB; return DECODE_success; default: